home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
HTML CD for Windows
/
HTML CD for Windows (Prentice Hall PTR)(1996).ISO
/
htmlcd.z
/
DEMOSRCH.BAT
< prev
next >
Wrap
DOS Batch File
|
1994-04-29
|
695b
|
27 lines
rem
rem ****************
rem * DEMOSRCH.BAT *
rem ****************
rem
rem Script to support the Form-based search in the demo
rem
rem Bob Denny <rdenny@netcom.com>
rem 28-Apr-94
rem
rem Echo is OFF at script entry
rem
set of=%output_file%
echo Content-type:text/plain > %of%
echo. >> %of%
if NOT %REQUEST_METHOD%==POST goto done
echo The following coded string contains your search specifications. >> %of%
echo In a real application, this would be decoded and given to a database >> %of%
echo back-end, and the results formatted as hypertext for display. >> %of%
echo. >> %of%
echo Here are your search specs: >> %of%
echo. >> %of%
type %CONTENT_FILE% >> %of%
:done